dynamic allocation - определение. Что такое dynamic allocation
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое dynamic allocation - определение

COMPUTER MEMORY MANAGEMENT METHODOLOGY IN WHICH THE PROGRAMMER EXPLICITLY CONTROLS ALLOCATION AND DEALLOCATION
Dynamic allocation; Custom memory allocation; Heap allocation
Найдено результатов: 791
Dynamic asset allocation         
INVESTMENT STRATEGY
Dynamic Asset Allocation
Dynamic asset allocation is a strategy used by investment products such as hedge funds, mutual funds, credit derivatives, index funds, principal protected notes (also known as guaranteed linked notes) and other structured investment products to achieve exposure to various investment opportunities and provide 100% principal protection.
Dynamic bandwidth allocation         
TECHNIQUE BY WHICH TRAFFIC BANDWIDTH IN A SHARED TELECOMMUNICATIONS MEDIUM CAN BE ALLOCATED ON DEMAND
Dynamic bandwidth allocation method; Bandwidth-on-Demand; Bandwidth-on-demand
Dynamic bandwidth allocation is a technique by which traffic bandwidth in a shared telecommunications medium can be allocated on demand and fairly between different users of that bandwidth. This is a form of bandwidth management, and is essentially the same thing as statistical multiplexing.
Resource allocation         
ALLOCATION OF RESOURCES AMONG POSSIBLE USES
Distributed resource allocation; Allocation of resources; Resource allocation problems; Resource allocation problem; Allocation of Resources; Resource allocation mechanism; Resource Allocation; Algorithms for resource allocation
In economics, resource allocation is the assignment of available resources to various uses. In the context of an entire economy, resources can be allocated by various means, such as markets, or planning.
C dynamic memory allocation         
MEMORY MANAGEMENT
Calloc; Realloc; Free (programming); Valloc; Farmalloc; Double free; Free(); Alloc.h; C memory management; Malloc; Jemalloc; Dlmalloc; Ptmalloc; Std::realloc; Std::malloc; Std::calloc; Std::free; Aligned alloc; Std::aligned alloc
C dynamic memory allocation refers to performing manual memory management for dynamic memory allocation in the C programming language via a group of functions in the C standard library, namely , , and .
Aerospool WT9 Dynamic         
  • Aerospool WT9 Dynamic with fixed landing gear
  • Aerospool WT9 Dynamic with retractable gear
  • Aerospool WT9 Dynamic in flight
LIGHT SPORT AIRCRAFT BY AEROSPOOL IN SLOVAKIA
Aerospool WT 9 Dynamic; Aerospool WT-9 Dynamic; Aerospool Dynamic
The Aerospool WT9 Dynamic is a Slovak ultralight and light-sport aircraft, designed and produced by Aerospool of Prievidza. The aircraft is supplied as a complete ready-to-fly-aircraft.
Channel allocation schemes         
Dynamic Channel Allocation; Dynamic Channel Assignment; Fixed Channel Allocation; Dynamic channel allocation; Channel allocation; Fixed channel allocation; DFCA; Dynamic Frequency and Channel Allocation; Dynamic channel allocation on a packet-by-packet basis
In radio resource management for wireless and cellular networks, channel allocation schemes allocate bandwidth and communication channels to base stations, access points and terminal equipment. The objective is to achieve maximum system spectral efficiency in bit/s/Hz/site by means of frequency reuse, but still assure a certain grade of service by avoiding co-channel interference and adjacent channel interference among nearby cells or networks that share the bandwidth.
memory management         
  • An example of external fragmentation
COMPUTER RESOURCE MANAGEMENT OF MEMORY, INVOLVING ALLOCATION AND DEALLOCATION
Memory allocation; Dynamic memory allocation; Heap-based memory allocation; Heap (programming); Heap-Based Memory Allocation; Dynamic storage; Dynamic Memory Allocation; Heap space; Heap management; Dynamic memory; HP-UX Memory Management; Allocation algorithms; Allocation Algorithms; Heap memory; Dynamic memory management; Heap compaction; Free store (programming); Free a memory location; Freeing memory; Allocate a memory location; Memory deallocation; Dynamic memory deallocation; Stack and heap; Memory allocator; Fixed-size blocks allocation; Fixed-size-blocks allocation; Deallocation; Free store (computing); Heap (memory management); Allocating and deallocating memory; Dynamically-allocated memory; Not enough memory; Insufficient memory; Memory usage; Heap memory allocation
<memory management, storage> A collection of techniques for providing sufficient memory to one or more processes in a computer system, especially when the system does not have enough memory to satisfy all processes' requirements simultaneously. Techniques include swapping, paging and virtual memory. Memory management is usually performed mostly by a hardware memory management unit. (1995-01-23)
dynamic analysis         
METHOD OF ANALYSING THE IMPACT OF FISCAL POLICY CHANGES BY FORECASTING THE EFFECTS OF ECONOMIC AGENTS' REACTIONS TO INCENTIVES CREATED BY POLICY
Dynamic analysis
<programming> Evaluation of a program based on its execution. Dynamic analysis relies on executing a piece of software with selected test data. (1996-05-13)
Dynamic scoring         
METHOD OF ANALYSING THE IMPACT OF FISCAL POLICY CHANGES BY FORECASTING THE EFFECTS OF ECONOMIC AGENTS' REACTIONS TO INCENTIVES CREATED BY POLICY
Dynamic analysis
Dynamic scoring is a forecasting technique for government revenues, expenditures, and budget deficits that incorporates predictions about the behavior of people and organizations based on changes in fiscal policy, usually tax rates. Dynamic scoring depends on models of the behavior of economic agents which predict how they would react once the tax rate or other policy change goes into effect.
Memory management         
  • An example of external fragmentation
COMPUTER RESOURCE MANAGEMENT OF MEMORY, INVOLVING ALLOCATION AND DEALLOCATION
Memory allocation; Dynamic memory allocation; Heap-based memory allocation; Heap (programming); Heap-Based Memory Allocation; Dynamic storage; Dynamic Memory Allocation; Heap space; Heap management; Dynamic memory; HP-UX Memory Management; Allocation algorithms; Allocation Algorithms; Heap memory; Dynamic memory management; Heap compaction; Free store (programming); Free a memory location; Freeing memory; Allocate a memory location; Memory deallocation; Dynamic memory deallocation; Stack and heap; Memory allocator; Fixed-size blocks allocation; Fixed-size-blocks allocation; Deallocation; Free store (computing); Heap (memory management); Allocating and deallocating memory; Dynamically-allocated memory; Not enough memory; Insufficient memory; Memory usage; Heap memory allocation
Memory management is a form of resource management applied to computer memory. The essential requirement of memory management is to provide ways to dynamically allocate portions of memory to programs at their request, and free it for reuse when no longer needed.

Википедия

Manual memory management

In computer science, manual memory management refers to the usage of manual instructions by the programmer to identify and deallocate unused objects, or garbage. Up until the mid-1990s, the majority of programming languages used in industry supported manual memory management, though garbage collection has existed since 1959, when it was introduced with Lisp. Today, however, languages with garbage collection such as Java are increasingly popular and the languages Objective-C and Swift provide similar functionality through Automatic Reference Counting. The main manually managed languages still in widespread use today are C and C++ – see C dynamic memory allocation.